home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / BBS-Archive / Dev / gcc263-src.lha / gcc-2.6.3 / config / mips / xm-iris4.h < prev    next >
C/C++ Source or Header  |  1993-01-05  |  444b  |  19 lines

  1. #include "mips/xm-mips.h"
  2.  
  3. #define USG
  4. #define HAVE_VPRINTF
  5.  
  6. #define bcopy(a,b,c) memcpy (b,a,c)
  7. #define bzero(a,b) memset (a,0,b)
  8. #define bcmp(a,b,c) memcmp (a,b,c)
  9.  
  10. #if 0
  11. #ifdef __GNUC__
  12. /* The normal irix compiler requires alloca.h or alloca doesn't work.
  13.    However, the IRIX compiler doesn't allow alloca to be stored in
  14.    something like ptr->field = alloca(), so we just use the normal
  15.    C alloca.  */
  16. #include <alloca.h>
  17. #endif
  18. #endif
  19.